home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1995 November
/
EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso
/
earcd
/
comm
/
fcdemo.lha
/
Install_FastCall
next >
Wrap
Text File
|
1995-06-10
|
1KB
|
71 lines
; Installer Script für FastCall
(user 2)
(set MainPath "FC")
(set SourcePath "FC")
(set destpath
(askdir
(prompt "Wo soll das FastCall-Verzeichnis erzeugt werden?")
(help "In dem gewählten Directory wird FastCall installiert")
(default "work:")
)
)
(set @default-dest
(tackon destpath "FC")
)
(set result
(makedir @default-dest
(prompt "Lege FastCall Directory an")
(infos)
(safe)
)
)
(set result
(copyfiles
(prompt "Kopiere alle Libraries")
(help "Kopiere die FastCall Libraries")
(source "libs/")
(dest "libs:")
(all)
(infos)
(optional fail)
(safe)
)
)
(set result
(copyfiles
(prompt "Kopiere alle Befehle")
(help "Kopiere die FastCall Befehle")
(source "c/")
(dest "c:")
(all)
(infos)
(optional fail)
(safe)
)
)
(set result
(copyfiles
(prompt "Kopiere den FastCallpfad")
(help "Kopiere den FastCallpfad")
(source "fc/")
(dest @default-dest)
(all)
(infos)
(optional fail)
(safe)
)
)
(textfile
(prompt "Hauptpfad wird erstellt")
(help "So findet FastCall sein Directory")
(dest "s:hauptpfad")
(append @default-dest)
(append "/\n0\n300000\n100000\n")
(confirm)
)